react-waterfall-render
Renders nested React components with asynchronous cached loading.
Useful for GraphQL clients (e.g. graphql-react
) and server side rendering.
Installation
To install with npm, run:
npm install react-waterfall-render
Use the WaterfallRenderContext
in React components to declare asynchronous cached loading, and use the function waterfallRender
to server side render your React app in a fully loaded state.
Requirements
- Node.js:
^12.22.0 || ^14.17.0 || >= 16.0.0
- Browsers:
> 0.5%, not OperaMini all, not IE > 0, not dead
API
function waterfallRender
Resolves a React node rendered with all data loaded within cached.
It repeatedly renders the React node and awaits any loading cache promises declared within (using the declare loading function via WaterfallRenderContext
), until no further loading is declared; implying all data has loaded and is rendered from cache.
If server side rendering, afterwards the cache should be serialized for hydration on the client prior to the initial client side render.
Intended for use in a Node.js environment for server side rendering, but could potentially be used for preloading components in modern browser environments that support async functions, etc.
Returns: Promise<*> — Resolves the final render result, typically a HTML string.
Examples
How to import.
import waterfallRender from "react-waterfall-render/waterfallRender.mjs";
How to server side render a React app in Node.js.
import ReactDOMServer from "react-dom/server.js";
import waterfallRender from "react-waterfall-render/waterfallRender.mjs";
import App from "./components/App.mjs";
waterfallRender(<App />, ReactDOMServer.renderToStaticMarkup).then((html) => {
});
member WaterfallRenderContext
React context object for making the declare loading function available within components when rendering with waterfallRender
.
Type: object
Examples
How to import.
import WaterfallRenderContext from "react-waterfall-render/WaterfallRenderContext.mjs";
Use within a component with the useContext
React hook.
import React from "react";
import WaterfallRenderContext from "react-waterfall-render/WaterfallRenderContext.mjs";
const declareLoading = React.useContext(WaterfallRenderContext);
type DeclareLoading
Declares loading cache promises to waterfallRender
. Available within React components via WaterfallRenderContext
.
Type: Function
Parameter | Type | Description |
---|
promises | …Promise<*> | Promises that resolve once loading data has been cached. The values resolved don’t matter. Multiple arguments can be used, similar to how Array.push works. |
Examples
Loading data in a React component within a server and client side rendered app.
import React from "react";
import WaterfallRenderContext from "react-waterfall-render/WaterfallRenderContext.mjs";
import useUserProfileData from "../hooks/useUserProfileData.mjs";
import UserProfile from "./UserProfile.mjs";
export default function UserPage({ userId }) {
const declareLoading = React.useContext(WaterfallRenderContext);
const { load, loading, cache } = useUserProfileData(userId);
if (cache) return <UserProfile data={cache} />;
if (!loading) {
const userDataPromise = load();
if (declareLoading) {
declareLoading(userDataPromise);
return null;
}
}
return "Loading…";
}
type ReactNode
A React virtual DOM node; anything that can be rendered.
Type: undefined
| null
| boolean | number | string | React.Element | Array<ReactNode>